home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 2410 / 2410.xpi / chrome / content / foxmarks-invalidpin.js < prev    next >
Text File  |  2010-01-28  |  766b  |  31 lines

  1. /* 
  2.  Copyright 2008 Foxmarks Inc.
  3.  
  4.  foxmarks-invalidpin.js: handles the UI for the ResetPIN dialog. 
  5.   
  6.  */
  7.  
  8. function onInvalidPINOK()
  9. {
  10.     if(document.getElementById("invalidpinradio").selectedItem.value == "newpin"){
  11.         var pin = document.getElementById("newpin").value;
  12.         if(!pin || pin.length < 4 || pin.length > 255){
  13.             Xmarks.Alert(Xmarks.Bundle().GetStringFromName("error.pinWrongSize"));
  14.             return false;
  15.         }
  16.         window.arguments[0].okay = true;
  17.         window.arguments[0].pin = pin;
  18.         return true;
  19.     } else {
  20.         window.arguments[0].okay = false;
  21.         return true;
  22.     }
  23. }
  24.  
  25. function onNewPinRadio()
  26. {
  27.     document.getElementById("newpin").focus();
  28.     document.getElementById("newpin").select();
  29. }
  30.  
  31.